diff options
| author | real-zephex <[email protected]> | 2024-04-10 07:17:40 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-10 07:17:40 +0530 |
| commit | 598907ac08167905a3fe01c6e3d2319240acf53f (patch) | |
| tree | 93e126651313854c9930018695ea27532f91608f /src/app/manga/[title]/[id]/[read] | |
| parent | minor changes (diff) | |
| download | dramalama-598907ac08167905a3fe01c6e3d2319240acf53f.tar.xz dramalama-598907ac08167905a3fe01c6e3d2319240acf53f.zip | |
removed edge funcitons
Diffstat (limited to 'src/app/manga/[title]/[id]/[read]')
| -rw-r--r-- | src/app/manga/[title]/[id]/[read]/page.jsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx index a13dbbb..239a4d6 100644 --- a/src/app/manga/[title]/[id]/[read]/page.jsx +++ b/src/app/manga/[title]/[id]/[read]/page.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import DownloadManga from "./download"; import CurrentReading from "./currentReading"; -export const runtime = "edge"; - export default async function Read({ params }) { const chapterId = params.read; const results = await getPages(chapterId); |